Command-Line Switches
The Windows Installer program’s command-line switches can be used together with the Meridian package arguments to further control the installation, such as for display, restart, logging, and repair options. For example, use the /quiet switch to install a product without user interaction. Refer to the Windows Installer help (msiexec /help or /?) for the additional command-line switches supported. For a list of the values supported by the ADDLOCAL property, see Install Or Remove Optional Components.
The install options and properties (following /i) must be followed by the display options (/quiet above), restart options (/norestart above), and log options (/log above) for the installation to work.
Example PowerUser installation
The following example uses all of the Meridian options provided in the Windows Installer Packages:
msiexec /i "BlueCielo Meridian Enterprise (x64).msi" LWSFOLDER="C:\BC-WorkSpace\" EDMSERVERNAME="Rainier" INSTALLDIR="C:\Program Files\BC-Meridian" WEBACCESSURL= "http://Rainier/Meridian/Start" ADDLOCAL="Common,AMHook,Download,Viewer,DBX,PUC,Acad2018, Inventor" TRANSFORMS="1053.mst" /quiet /norestart /log "C:\Temp\BCME2018-Setup.log"
This example will result in the following:
- The Meridian Enterprise 64-bit clients will be installed
- The local workspace folder will be set to C:\BC-WorkSpace\
- The default Meridian application server name will be Rainier
- The program will be installed in folder C:\Program Files\BC-Meridian
- The PowerWeb shortcut will be set to http://Rainier/Meridian/Start
- The program will be installed with the Swedish language
- The following components will be installed:
- Common client components
- PowerUser client
- Application Integration
- Viewer
- Autodesk ObjectDBX viewer support
- AutoCAD 2018 link
- Inventor link
- The installation will run in Quiet mode with no user interaction (including progress bar)
- The computer will not be restarted upon completion
- All setup output will be logged to the file C:\Temp\BCME2018-Setup.log
Example PowerWeb installation
The following example uses some of the Meridian options provided in the Windows Installer Packages:
msiexec /i "BlueCielo Meridian Enterprise (x64).msi" LWSFOLDER="C:\BC-WorkSpace\" INSTALLDIR="C:\Program Files\BC-Meridian" INSTALLDIR32="C:\Program Files (x86)\BC-Meridian" WEBACCESSURL="http://Rainier/Meridian/Start" SCURL="http://SCServer/BCSiteCache" ADDLOCAL="Common,AMHook,Download,Viewer,DBX,NETInterops" /quiet /norestart /log "C:\Temp\BCME2017-Setup.log"
This example will result in the following:
- The Meridian PowerWeb client will be installed
- The local workspace folder will be set to C:\BC-WorkSpace\
- The 64-bit program files will be installed in folder C:\Program Files\BC-Meridian
- The 32-bit program files will be installed in folder C:\Program Files (x86)\BC-Meridian
- The PowerWeb shortcut will be set to http://Rainier/Meridian/Start
- The site cache URL will be set to http://Rainier/BCSiteCache
- The following components will be installed:
- Common client components
- Application Integration
- Viewer
- Autodesk ObjectDBX viewer support
- .NET interop assemblies
- The installation will run in Quiet mode with no user interaction (including progress bar)
- The computer will not be restarted upon completion
- All setup output will be logged to the file C:\Temp\BCME2018-Setup.log